@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif!important; 
}

nav#navbar-top {
    min-height: 47px;
    font-size: 12px;
}

nav#navbar-main {
    border-bottom: 1px solid lightgrey;
}

.midnight-blue-text {
    color: rgb(15, 41, 64)!important;
}

.white-text {
    color: white!important;
}

a.white-text:hover {
    color: rgb(163, 163, 163)!important;
}

.nav-text {
    color: rgb(70, 70, 70)!important;
}

.nav-text:hover {
    color: #00539b!important;
}

.yellow-text {
    color: yellow!important;
}

a.yellow-text:hover {
    color: rgb(160, 160, 0)!important;
}

.white-box {
    display: inline-block!important;
    border: 1px solid white!important;
    border-radius: 8px;
    text-align: center!important;
    padding: 6px!important;
}

.white-box:hover {
    display: inline-block!important;
    border: 1px solid rgb(163, 163, 163)!important;
    border-radius: 8px;
    text-align: center!important;
    padding: 6px!important;
}

.yellow-box {
    display: inline-block;
    border: 1px solid yellow!important;
    border-radius: 8px;
    text-align: center!important;
    margin-right: 16px;
    padding: 6px!important;
}

.yellow-box:hover {
    display: inline-block;
    border: 1px solid rgb(160, 160, 0)!important;
    border-radius: 8px;
    text-align: center!important;
    margin-right: 16px;
    padding: 6px!important;
}

.center-text {
    margin: 0 auto;
    height: auto;
}

.bg-midnight-blue { 
    background-color: #0f2940;
}

.logo-text {
    display: inline-block;
    color: #125691;
    margin-left: 12px;
}

.landing-content-box {
    display: inline-block!important;
    border: 2px solid white!important;
    border-radius: 10px;
    padding: 20px!important;
    text-align: center!important;
    background-color: #0f2940cc;
    width: 50vw;
    max-width: 550px;
    margin-top: 30%;
}

/* Splash Screen */
.intro {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #0f2940;
    transition: 1s;
}

.logo-header {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.logo {
    position: relative;
    display: inline-block;
    bottom: -20px;
    opacity: 0;
}

.logo.active {
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.logo.fade {
    bottom: 150px;
    opacity: 0;
    transition: ease-in-out 0.5s;
}